func sync/atomic.LoadInt64
7 uses
sync/atomic (current package)
doc.go#L149: func LoadInt64(addr *int64) (val int64)
type.go#L98: func (x *Int64) Load() int64 { return LoadInt64(&x.v) }
github.com/go-faster/errors
trace.go#L36: return atomic.LoadInt64(&traceFlag) == traceEnabled
github.com/gotd/td/internal/proto
gzip.go#L118: return atomic.LoadInt64(&c.read)
go.uber.org/atomic
int64.go#L45: return atomic.LoadInt64(&i.v)
nhooyr.io/websocket
netconn.go#L129: if atomic.LoadInt64(&nc.writeExpired) == 1 {
netconn.go#L157: if atomic.LoadInt64(&nc.readExpired) == 1 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |